home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJTST111.ZIP / tests / t07.c < prev    next >
C/C++ Source or Header  |  1993-10-04  |  152b  |  16 lines

  1. #define F(x,y) x() { int i; for (i=0; i<10; i++) y(); }
  2.  
  3. f(){}
  4.  
  5. F(f1,f)
  6. F(f2,f1)
  7. F(f3,f2)
  8. F(f4,f3)
  9. F(f5,f4)
  10. F(f6,f5)
  11.  
  12. main()
  13. {
  14.   f6();
  15. }
  16.